3
How do I change the control's font

OleObject oSlider

oSlider = ole_1.Object
oSlider.ThumbSize = 32
oSlider.Font.Name = "Tahoma"
oSlider.ForeColor = RGB(255,0,0)
oSlider.Caption(256,"thumb")

2
How can I change the control's foreground color

OleObject oSlider

oSlider = ole_1.Object
oSlider.ForeColor = RGB(255,0,0)
oSlider.ThumbSize = 32
oSlider.Caption(256,"thumb")

1
How can I change the control's background color

OleObject oSlider

oSlider = ole_1.Object
oSlider.BackColor = RGB(0,255,0)